home *** CD-ROM | disk | FTP | other *** search
- I'm running trumpet winsock with serweb3 and mosaic has a problem grabbing
- files via http:\\ from the machine its running on. The data transfer is
- extremely slow. I've tried this using Cello with no problems. Any ideas?
-
-
- thanks,
- scott
- From news@bigblue.oit.unc.edu Thu Mar 17 13:50:19 1994
- Received: from bigblue.oit.unc.edu by SunSITE.Unc.EDU (5.65c+IDA/FvK-1.07) with SMTP
- id AA08779; Fri, 18 Mar 1994 00:30:55 -0500
- Received: by bigblue.oit.unc.edu (AIX 3.2/UCB 5.64/4.03)
- id AA12031; Fri, 18 Mar 1994 00:27:38 -0500
- Received: from GATEWAY by bigblue with netnews
- for winsock@sunsite.unc.edu (winsock@sunsite.unc.edu)
- To: winsock@sunsite.unc.edu
- Date: Thu, 17 Mar 1994 13:50:19 GMT
- From: ccahdm@beluga.upe.ac.za (Donald Munro)
- Message-Id: <ccahdm.27.008CD09B@beluga.upe.ac.za>
- Organization: University of Port Elizabeth Computing Centre
- Sender: ses
- Subject: Winsock Chess Beta Release
-
- I have uploaded a beta release of my Winsock Chess program to WUARCHIVE (CICA
- don't seem to be accepting uploads at the moment). It allows two players to
- play chess against each over over a Winsock supporting network. It it
- freeware and comes with the source which based on the GNU Chess for Windows
- source for checking validity of moves etc.
-
- Any bug reports and/or suggestions are welcome.
-
- Donald Munro (ccahdm@beluga.upe.ac.za)
- Computing Centre, University of Port Elizabeth
- From news@bigblue.oit.unc.edu Thu Mar 17 14:09:03 1994
- Received: from bigblue.oit.unc.edu by SunSITE.Unc.EDU (5.65c+IDA/FvK-1.07) with SMTP
- id AA08786; Fri, 18 Mar 1994 00:30:57 -0500
- Received: by bigblue.oit.unc.edu (AIX 3.2/UCB 5.64/4.03)
- id AA08679; Fri, 18 Mar 1994 00:30:27 -0500
- Received: from GATEWAY by bigblue with netnews
- for winsock@sunsite.unc.edu (winsock@sunsite.unc.edu)
- To: winsock@sunsite.unc.edu
- Date: Thu, 17 Mar 1994 19:09:03 EST
- From: jmdaluz@kquest.com (Jose M. daLuz)
- Message-Id: <jmdaluz.2.006882E9@kquest.com>
- Organization: KnowledgeQuest Online Research
- Sender: ses
- Subject: Internet Tour Guide's Chameleon:Compressed SLIP?
-
- I noticed that there's a new "Internet Tour Guide for Windows" which contains
- a limited version of Netmanage Chameleon. Does anyone know if the SLIP
- support in this package includes header compression?
-
- Thanks in advance.
-
-
-
- *************************************************************
- * Jose M. daLuz * Voice: (508) 996-6101 *
- * KnowledgeQuest Online Research * Fax: (508) 996-6215 *
- * Internet: jmdaluz@kquest.com * MCI Mail: 639-1229 *
- *************************************************************
- From news@bigblue.oit.unc.edu Thu Mar 17 13:40:19 1994
- Received: from bigblue.oit.unc.edu by SunSITE.Unc.EDU (5.65c+IDA/FvK-1.07) with SMTP
- id AA08804; Fri, 18 Mar 1994 00:31:01 -0500
- Received: by bigblue.oit.unc.edu (AIX 3.2/UCB 5.64/4.03)
- id AA11976; Fri, 18 Mar 1994 00:27:27 -0500
- Received: from GATEWAY by bigblue with netnews
- for winsock@sunsite.unc.edu (winsock@sunsite.unc.edu)
- To: winsock@sunsite.unc.edu
- Date: Thu, 17 Mar 1994 13:40:19 GMT
- From: ccahdm@beluga.upe.ac.za (Donald Munro)
- Message-Id: <ccahdm.26.0083A97F@beluga.upe.ac.za>
- Organization: University of Port Elizabeth Computing Centre
- Sender: ses
- References: <stevenmz.35.0001149F@teleport.com>
- Subject: Re: WINSOCK.DLL - Determining IP address
-
- In article <stevenmz.35.0001149F@teleport.com> stevenmz@teleport.com (Steven M. Ziuchkovski) writes:
- >From: stevenmz@teleport.com (Steven M. Ziuchkovski)
- >Subject: WINSOCK.DLL - Determining IP address
- >Date: Wed, 16 Mar 1994 01:04:49
-
- >I'm just starting out programming with the WINSOCK.DLL. I've got a few files
- >from rhino.microsoft.com, and did a LOT of reading, but the documentation does
- >not seem to be that good (well, to me).
-
- >Anyway, I'm trying to take a string (such as 'oak.oakland.edu') and determine
- >it's numeric IP address (141.210.10.117) as a small excersize for myself to
- >get started. I've gotten a small program that uses WSAStartup to determine the
- >number of sockets available (szMaxSockets), etc. Then, I use GetHostByName to
- >fill out a HostEnt record.
-
- The hostent structure hostent->h_addr which is actually a macro for the first
- entry in an array of host addresses is not very well documented. The
- definition says, if I recall correctly, that it is a char FAR ** whereas in
- actual fact its a pointer to an unsigned long containing the internal
- representation of the IP address.
- IThe following code should do the trick (this is blocking code - it is
- slightly more complex to use the WSAgethost.. calls) :
-
- unsigned long ulIpAddr;
- unsigned long FAR *lpulIpAddr;
- ..
- ..
- if ( (lphostent = gethostbyname(lpszServerIPAddr)) == (LPHOSTENT)0L)
- { ulIpAddr = inet_addr(lpszServerIPAddr);
- if ( (lphostent = gethostbyaddr(&ulIpAddr,4,PF_INET)) == (LPHOSTENT)0L)
- { MsgBox( NULL,
- MB_ICONSTOP | MB_OK,
- "Winsock Error %s : Invalid IP Address",
- SocketErrorMsg(WSAGetLastError()));
- WSACleanup();
- return FALSE;
- }
- }
- else // valid host name
- { lpulIpAddr = (unsigned long FAR *) lphostent->h_addr;
- ulIpAddr = *lpulIpAddr;
- }
-
- Note that using unsigned long as above is non-portable to Win32; in Unix and I
- assume Win32 the unsigned longs are replaced by ints.
-
- Donald Munro (ccahdm@beluga.upe.ac.za)
- Computing Centre, University of Port Elizabeth
- From news@bigblue.oit.unc.edu Fri Mar 18 00:30:58 1994
- Received: from bigblue.oit.unc.edu by SunSITE.Unc.EDU (5.65c+IDA/FvK-1.07) with SMTP
- id AA08796; Fri, 18 Mar 1994 00:30:58 -0500
- Received: by bigblue.oit.unc.edu (AIX 3.2/UCB 5.64/4.03)
- id AA08680; Fri, 18 Mar 1994 00:30:36 -0500
- Received: from GATEWAY by bigblue with netnews
- for winsock@sunsite.unc.edu (winsock@sunsite.unc.edu)
- To: winsock@sunsite.unc.edu
- Date: Thu, 17 Mar 1994 16:08:10
- From: stevenmz@teleport.com (Steven M. Ziuchkovski)
- Message-Id: <stevenmz.36.0010235B@teleport.com>
- Organization: The Falcon's Nest
- Sender: ses
- Subject: Error code 10035 from GetHostByName()
-
- I wrote a simple program to accept input from the user in the form of
- "oak.oakland.edu" (an IP address in text form), and figure out what the
- numerical address is (in this case, 141.210.10.117).
-
- At one time, the program worked well, but now GetHostByName() is returning an
- error code of 10035. What error is that? In the documentation I have, it says
- that it's the same as in BSD. Well, sorry to say, I do not have the
- documentation on BSD. So could someone elaborate?
-
- Steve
-
- ---
- ///
- Steven Ziuchkovski (0 0) stevenmz@teleport.com
- ------------------------------ooO-(_)-Ooo------------------------------
-
-